home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
newlooklib.lha
/
newlook
/
lastitext.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-24
|
162b
|
11 lines
/*
* LASTITEXT.C
*/
#include "newlook.h"
struct IntuiText *LastIText(struct IntuiText *it)
{
return (it && it->NextText) ? LastIText(it->NextText) : it;
}